home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Text / Misc / Smiley / smiley.h < prev    next >
C/C++ Source or Header  |  1994-03-02  |  359b  |  26 lines

  1. /*
  2.  * s m i l e y . h
  3.  *
  4.  * DaviD W. Sanderson
  5.  */
  6.  
  7. /*
  8.  * Each smiley has a face and a description.
  9.  */
  10.  
  11. struct smiley
  12. {
  13.     char *face;
  14.     char *desc;
  15. };
  16.  
  17. /*
  18.  * faces[] is the array of smileys, nfaces is the number of elements
  19.  * in faces.
  20.  *
  21.  * Definitions for these are generated by mkfaces from faces.in.
  22.  */
  23.  
  24. extern struct smiley    faces[];
  25. extern int        nfaces;
  26.